home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / CDROM / Amiga_MO_FAQ / DOSDrivers-3½ / PC / MOC next >
Text File  |  1998-11-28  |  2KB  |  44 lines

  1. /* $VER: MOC 40.1 (28.11.98)
  2.  *
  3.  * MO file system entry for the FIRST PARTITION of AT-HD type MS-DOS FAT disks.
  4.  *
  5.  * This file enables CrossDOSFileSystem on an MO disk cartridge.
  6.  *
  7.  * CrossDOS reads the LowCyl and HighCyl information from of the MS-DOS
  8.  * partition table on the disk. It should also read the block size; if not,
  9.  * uncomment the SectorsPerBlock and SectorSize lines.
  10.  *
  11.  * There can be up to 10 partitions on an AT-HD type disk. Which one you
  12.  * access is determined by the last letter of the device name, C for the first
  13.  * partition, D for the second and so on.
  14.  *
  15.  * So this mount file for MOC: accesses the first partition. To access other
  16.  * partitions, copy this mount file and rename to create MOD:, MOE:, etc.
  17.  *
  18.  */
  19.  
  20. FileSystem    = L:CrossDOSFileSystem
  21. Flags        = 0
  22. Surfaces    = 1        /* dummy value, not used */
  23. BlocksPerTrack    = 32        /* dummy value, not used */
  24. /* SectorsPerBlock    = 1    this might be a dummy value */
  25. /* SectorSize    = 512        this might be a dummy value */
  26. Mask        = 0x7FFFFFFE    /* Change to suit your system and SCSI controller */
  27. MaxTransfer    = 0xFFFFFFFE    /* Change to suit your system and SCSI controller */
  28. Reserved    = 2        /* dummy value, not used */
  29. Interleave    = 0
  30. LowCyl        = 0        /* Must be 0 for CrossDOS automatic partition detection */
  31. HighCyl        = 9999        /* dummy value, not used */
  32. Buffers        = 128        /* Number of filesystem buffers */
  33. BufMemType    = 1
  34. DosType        = 0x4D534800    /* MSH\0 */
  35. StackSize    = 4000
  36. Priority    = 10
  37. GlobVec        = -1
  38.  
  39. /* The Device and Unit fields are controlled by tooltypes in the MOC icon.
  40.  *
  41.  * Device    = scsi.device
  42.  * Unit        = 4
  43.  */
  44.